home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jaz_clib.arc
/
JZWRTCHR.ASM
< prev
next >
Wrap
Assembly Source File
|
1989-04-09
|
347b
|
21 lines
assume cs:_text
_text segment public byte 'code'
public _jzwrtchr
_jzwrtchr proc near
push bp
mov bp,sp
mov ah,9 ; display char in al
mov al,[bp+4] ; get char to write
mov bx,[bp+6] ; get attribute
mov cx,[bp+8] ; get number of chars to write
int 10h
mov sp,bp
pop bp
ret
_jzwrtchr endp
_text ends
end